Don't match the output of the submodule test
authorAlex Crichton <alex@alexcrichton.com>
Thu, 7 Aug 2014 01:45:32 +0000 (18:45 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 7 Aug 2014 01:46:26 +0000 (18:46 -0700)
Apparently really old versions of git ignore --quiet and print things anyway,
causing the test to fail on the linux buildbot.

tests/test_cargo_compile_git_deps.rs

index ed7c38ef934b0dd610608e8b20a7e2f200fc3171..d15977dce72a84bd1093a672540ef9352137a38a 100644 (file)
@@ -718,14 +718,7 @@ test!(dep_with_submodule {
     let git_root = git_project.url();
 
     assert_that(project.cargo_process("cargo-build"),
-        execs()
-        .with_stdout(format!("{} git repository `{}`\n\
-                              {} dep1 v0.5.0 ({}#[..])\n\
-                              {} foo v0.5.0 ({})\n",
-                             UPDATING, git_root,
-                             COMPILING, git_root,
-                             COMPILING, root))
-        .with_stderr(""));
+        execs().with_stderr("").with_status(0));
 })
 
 test!(two_deps_only_update_one {